home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / linux / videodev2.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  30KB  |  952 lines

  1. #ifndef __LINUX_VIDEODEV2_H
  2. #define __LINUX_VIDEODEV2_H
  3. /*
  4.  *    Video for Linux Two
  5.  *
  6.  *    Header file for v4l or V4L2 drivers and applications, for
  7.  *    Linux kernels 2.2.x or 2.4.x.
  8.  *
  9.  *    See http://bytesex.org/v4l/ for API specs and other
  10.  *    v4l2 documentation.
  11.  *
  12.  *    Author: Bill Dirks <bdirks@pacbell.net>
  13.  *        Justin Schoeman
  14.  *        et al.
  15.  */
  16.  
  17. #include <linux/compiler.h>
  18. #ifdef __KERNEL__
  19. #include <linux/time.h> /* need struct timeval */
  20. #endif
  21. #include <linux/compiler.h> /* need __user */
  22.  
  23. /*
  24.  *    M I S C E L L A N E O U S
  25.  */
  26.  
  27. /*  Four-character-code (FOURCC) */
  28. #define v4l2_fourcc(a,b,c,d)\
  29.         (((__u32)(a)<<0)|((__u32)(b)<<8)|((__u32)(c)<<16)|((__u32)(d)<<24))
  30.  
  31. /*
  32.  *    E N U M S
  33.  */
  34. enum v4l2_field {
  35.     V4L2_FIELD_ANY        = 0, /* driver can choose from none,
  36.                       top, bottom, interlaced
  37.                       depending on whatever it thinks
  38.                       is approximate ... */
  39.     V4L2_FIELD_NONE       = 1, /* this device has no fields ... */
  40.     V4L2_FIELD_TOP        = 2, /* top field only */
  41.     V4L2_FIELD_BOTTOM     = 3, /* bottom field only */
  42.     V4L2_FIELD_INTERLACED = 4, /* both fields interlaced */
  43.     V4L2_FIELD_SEQ_TB     = 5, /* both fields sequential into one
  44.                       buffer, top-bottom order */
  45.     V4L2_FIELD_SEQ_BT     = 6, /* same as above + bottom-top order */
  46.     V4L2_FIELD_ALTERNATE  = 7, /* both fields alternating into
  47.                       separate buffers */
  48. };
  49. #define V4L2_FIELD_HAS_TOP(field)    \
  50.     ((field) == V4L2_FIELD_TOP     ||\
  51.      (field) == V4L2_FIELD_INTERLACED ||\
  52.      (field) == V4L2_FIELD_SEQ_TB    ||\
  53.      (field) == V4L2_FIELD_SEQ_BT)
  54. #define V4L2_FIELD_HAS_BOTTOM(field)    \
  55.     ((field) == V4L2_FIELD_BOTTOM     ||\
  56.      (field) == V4L2_FIELD_INTERLACED ||\
  57.      (field) == V4L2_FIELD_SEQ_TB    ||\
  58.      (field) == V4L2_FIELD_SEQ_BT)
  59. #define V4L2_FIELD_HAS_BOTH(field)    \
  60.     ((field) == V4L2_FIELD_INTERLACED ||\
  61.      (field) == V4L2_FIELD_SEQ_TB    ||\
  62.      (field) == V4L2_FIELD_SEQ_BT)
  63.  
  64. enum v4l2_buf_type {
  65.     V4L2_BUF_TYPE_VIDEO_CAPTURE  = 1,
  66.     V4L2_BUF_TYPE_VIDEO_OUTPUT   = 2,
  67.     V4L2_BUF_TYPE_VIDEO_OVERLAY  = 3,
  68.     V4L2_BUF_TYPE_VBI_CAPTURE    = 4,
  69.     V4L2_BUF_TYPE_VBI_OUTPUT     = 5,
  70.     V4L2_BUF_TYPE_PRIVATE        = 0x80,
  71. };
  72.  
  73. enum v4l2_ctrl_type {
  74.     V4L2_CTRL_TYPE_INTEGER         = 1,
  75.     V4L2_CTRL_TYPE_BOOLEAN         = 2,
  76.     V4L2_CTRL_TYPE_MENU         = 3,
  77.     V4L2_CTRL_TYPE_BUTTON         = 4,
  78. };
  79.  
  80. enum v4l2_tuner_type {
  81.     V4L2_TUNER_RADIO         = 1,
  82.     V4L2_TUNER_ANALOG_TV         = 2,
  83.     V4L2_TUNER_DIGITAL_TV         = 3,
  84. };
  85.  
  86. enum v4l2_memory {
  87.     V4L2_MEMORY_MMAP             = 1,
  88.     V4L2_MEMORY_USERPTR          = 2,
  89.     V4L2_MEMORY_OVERLAY          = 3,
  90. };
  91.  
  92. /* see also http://vektor.theorem.ca/graphics/ycbcr/ */
  93. enum v4l2_colorspace {
  94.     /* ITU-R 601 -- broadcast NTSC/PAL */
  95.     V4L2_COLORSPACE_SMPTE170M     = 1,
  96.  
  97.     /* 1125-Line (US) HDTV */
  98.     V4L2_COLORSPACE_SMPTE240M     = 2,
  99.  
  100.     /* HD and modern captures. */
  101.     V4L2_COLORSPACE_REC709        = 3,
  102.  
  103.     /* broken BT878 extents (601, luma range 16-253 instead of 16-235) */
  104.     V4L2_COLORSPACE_BT878         = 4,
  105.  
  106.     /* These should be useful.  Assume 601 extents. */
  107.     V4L2_COLORSPACE_470_SYSTEM_M  = 5,
  108.     V4L2_COLORSPACE_470_SYSTEM_BG = 6,
  109.  
  110.     /* I know there will be cameras that send this.  So, this is
  111.      * unspecified chromaticities and full 0-255 on each of the
  112.      * Y'CbCr components
  113.      */
  114.     V4L2_COLORSPACE_JPEG          = 7,
  115.  
  116.     /* For RGB colourspaces, this is probably a good start. */
  117.     V4L2_COLORSPACE_SRGB          = 8,
  118. };
  119.  
  120. enum v4l2_priority {
  121.     V4L2_PRIORITY_UNSET       = 0,  /* not initialized */
  122.     V4L2_PRIORITY_BACKGROUND  = 1,
  123.     V4L2_PRIORITY_INTERACTIVE = 2,
  124.     V4L2_PRIORITY_RECORD      = 3,
  125.     V4L2_PRIORITY_DEFAULT     = V4L2_PRIORITY_INTERACTIVE,
  126. };
  127.  
  128. struct v4l2_rect {
  129.     __s32   left;
  130.     __s32   top;
  131.     __s32   width;
  132.     __s32   height;
  133. };
  134.  
  135. struct v4l2_fract {
  136.     __u32   numerator;
  137.     __u32   denominator;
  138. };
  139.  
  140. /*
  141.  *    D R I V E R   C A P A B I L I T I E S
  142.  */
  143. struct v4l2_capability
  144. {
  145.     __u8    driver[16];    /* i.e. "bttv" */
  146.     __u8    card[32];    /* i.e. "Hauppauge WinTV" */
  147.     __u8    bus_info[32];    /* "PCI:" + pci_name(pci_dev) */
  148.     __u32   version;        /* should use KERNEL_VERSION() */
  149.     __u32    capabilities;    /* Device capabilities */
  150.     __u32    reserved[4];
  151. };
  152.  
  153. /* Values for 'capabilities' field */
  154. #define V4L2_CAP_VIDEO_CAPTURE    0x00000001  /* Is a video capture device */
  155. #define V4L2_CAP_VIDEO_OUTPUT    0x00000002  /* Is a video output device */
  156. #define V4L2_CAP_VIDEO_OVERLAY    0x00000004  /* Can do video overlay */
  157. #define V4L2_CAP_VBI_CAPTURE    0x00000010  /* Is a VBI capture device */
  158. #define V4L2_CAP_VBI_OUTPUT    0x00000020  /* Is a VBI output device */
  159. #define V4L2_CAP_RDS_CAPTURE    0x00000100  /* RDS data capture */
  160.  
  161. #define V4L2_CAP_TUNER        0x00010000  /* has a tuner */
  162. #define V4L2_CAP_AUDIO        0x00020000  /* has audio support */
  163. #define V4L2_CAP_RADIO        0x00040000  /* is a radio device */
  164.  
  165. #define V4L2_CAP_READWRITE      0x01000000  /* read/write systemcalls */
  166. #define V4L2_CAP_ASYNCIO        0x02000000  /* async I/O */
  167. #define V4L2_CAP_STREAMING      0x04000000  /* streaming I/O ioctls */
  168.  
  169. /*
  170.  *    V I D E O   I M A G E   F O R M A T
  171.  */
  172.  
  173. struct v4l2_pix_format
  174. {
  175.     __u32                  width;
  176.     __u32                 height;
  177.     __u32                 pixelformat;
  178.     enum v4l2_field      field;
  179.     __u32                bytesperline;    /* for padding, zero if unused */
  180.     __u32                   sizeimage;
  181.         enum v4l2_colorspace    colorspace;
  182.     __u32            priv;        /* private data, depends on pixelformat */
  183. };
  184.  
  185. /*           Pixel format    FOURCC                  depth  Description   */
  186. #define V4L2_PIX_FMT_RGB332  v4l2_fourcc('R','G','B','1') /*  8  RGB-3-3-2     */
  187. #define V4L2_PIX_FMT_RGB555  v4l2_fourcc('R','G','B','O') /* 16  RGB-5-5-5     */
  188. #define V4L2_PIX_FMT_RGB565  v4l2_fourcc('R','G','B','P') /* 16  RGB-5-6-5     */
  189. #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R','G','B','Q') /* 16  RGB-5-5-5 BE  */
  190. #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R','G','B','R') /* 16  RGB-5-6-5 BE  */
  191. #define V4L2_PIX_FMT_BGR24   v4l2_fourcc('B','G','R','3') /* 24  BGR-8-8-8     */
  192. #define V4L2_PIX_FMT_RGB24   v4l2_fourcc('R','G','B','3') /* 24  RGB-8-8-8     */
  193. #define V4L2_PIX_FMT_BGR32   v4l2_fourcc('B','G','R','4') /* 32  BGR-8-8-8-8   */
  194. #define V4L2_PIX_FMT_RGB32   v4l2_fourcc('R','G','B','4') /* 32  RGB-8-8-8-8   */
  195. #define V4L2_PIX_FMT_GREY    v4l2_fourcc('G','R','E','Y') /*  8  Greyscale     */
  196. #define V4L2_PIX_FMT_YVU410  v4l2_fourcc('Y','V','U','9') /*  9  YVU 4:1:0     */
  197. #define V4L2_PIX_FMT_YVU420  v4l2_fourcc('Y','V','1','2') /* 12  YVU 4:2:0     */
  198. #define V4L2_PIX_FMT_YUYV    v4l2_fourcc('Y','U','Y','V') /* 16  YUV 4:2:2     */
  199. #define V4L2_PIX_FMT_UYVY    v4l2_fourcc('U','Y','V','Y') /* 16  YUV 4:2:2     */
  200. #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4','2','2','P') /* 16  YVU422 planar */
  201. #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4','1','1','P') /* 16  YVU411 planar */
  202. #define V4L2_PIX_FMT_Y41P    v4l2_fourcc('Y','4','1','P') /* 12  YUV 4:1:1     */
  203.  
  204. /* two planes -- one Y, one Cr + Cb interleaved  */
  205. #define V4L2_PIX_FMT_NV12    v4l2_fourcc('N','V','1','2') /* 12  Y/CbCr 4:2:0  */
  206. #define V4L2_PIX_FMT_NV21    v4l2_fourcc('N','V','2','1') /* 12  Y/CrCb 4:2:0  */
  207.  
  208. /*  The following formats are not defined in the V4L2 specification */
  209. #define V4L2_PIX_FMT_YUV410  v4l2_fourcc('Y','U','V','9') /*  9  YUV 4:1:0     */
  210. #define V4L2_PIX_FMT_YUV420  v4l2_fourcc('Y','U','1','2') /* 12  YUV 4:2:0     */
  211. #define V4L2_PIX_FMT_YYUV    v4l2_fourcc('Y','Y','U','V') /* 16  YUV 4:2:2     */
  212. #define V4L2_PIX_FMT_HI240   v4l2_fourcc('H','I','2','4') /*  8  8-bit color   */
  213.  
  214. /* see http://www.siliconimaging.com/RGB%20Bayer.htm */
  215. #define V4L2_PIX_FMT_SBGGR8  v4l2_fourcc('B','A','8','1') /*  8  BGBG.. GRGR.. */
  216.  
  217. /* compressed formats */
  218. #define V4L2_PIX_FMT_MJPEG    v4l2_fourcc('M','J','P','G') /* Motion-JPEG   */
  219. #define V4L2_PIX_FMT_JPEG     v4l2_fourcc('J','P','E','G') /* JFIF JPEG     */
  220. #define V4L2_PIX_FMT_DV       v4l2_fourcc('d','v','s','d') /* 1394          */
  221. #define V4L2_PIX_FMT_MPEG     v4l2_fourcc('M','P','E','G') /* MPEG          */
  222.  
  223. /*  Vendor-specific formats   */
  224. #define V4L2_PIX_FMT_WNVA     v4l2_fourcc('W','N','V','A') /* Winnov hw compress */
  225. #define V4L2_PIX_FMT_SN9C10X  v4l2_fourcc('S','9','1','0') /* SN9C10x compression */
  226.  
  227. /*
  228.  *    F O R M A T   E N U M E R A T I O N
  229.  */
  230. struct v4l2_fmtdesc
  231. {
  232.     __u32                index;             /* Format number      */
  233.     enum v4l2_buf_type  type;              /* buffer type        */
  234.     __u32               flags;
  235.     __u8                description[32];   /* Description string */
  236.     __u32                pixelformat;       /* Format fourcc      */
  237.     __u32                reserved[4];
  238. };
  239.  
  240. #define V4L2_FMT_FLAG_COMPRESSED 0x0001
  241.  
  242.  
  243. /*
  244.  *    T I M E C O D E
  245.  */
  246. struct v4l2_timecode
  247. {
  248.     __u32    type;
  249.     __u32    flags;
  250.     __u8    frames;
  251.     __u8    seconds;
  252.     __u8    minutes;
  253.     __u8    hours;
  254.     __u8    userbits[4];
  255. };
  256.  
  257. /*  Type  */
  258. #define V4L2_TC_TYPE_24FPS        1
  259. #define V4L2_TC_TYPE_25FPS        2
  260. #define V4L2_TC_TYPE_30FPS        3
  261. #define V4L2_TC_TYPE_50FPS        4
  262. #define V4L2_TC_TYPE_60FPS        5
  263.  
  264. /*  Flags  */
  265. #define V4L2_TC_FLAG_DROPFRAME        0x0001 /* "drop-frame" mode */
  266. #define V4L2_TC_FLAG_COLORFRAME        0x0002
  267. #define V4L2_TC_USERBITS_field        0x000C
  268. #define V4L2_TC_USERBITS_USERDEFINED    0x0000
  269. #define V4L2_TC_USERBITS_8BITCHARS    0x0008
  270. /* The above is based on SMPTE timecodes */
  271.  
  272.  
  273. /*
  274.  *    C O M P R E S S I O N   P A R A M E T E R S
  275.  */
  276. #if 0
  277. /* ### generic compression settings don't work, there is too much
  278.  * ### codec-specific stuff.  Maybe reuse that for MPEG codec settings
  279.  * ### later ... */
  280. struct v4l2_compression
  281. {
  282.     __u32    quality;
  283.     __u32    keyframerate;
  284.     __u32    pframerate;
  285.     __u32    reserved[5];
  286.  
  287. /*  what we'll need for MPEG, extracted from some postings on
  288.     the v4l list (Gert Vervoort, PlasmaJohn).
  289.  
  290. system stream:
  291.   - type: elementary stream(ES), packatised elementary stream(s) (PES)
  292.     program stream(PS), transport stream(TS)
  293.   - system bitrate
  294.   - PS packet size (DVD: 2048 bytes, VCD: 2324 bytes)
  295.   - TS video PID
  296.   - TS audio PID
  297.   - TS PCR PID
  298.   - TS system information tables (PAT, PMT, CAT, NIT and SIT)
  299.   - (MPEG-1 systems stream vs. MPEG-2 program stream (TS not supported
  300.     by MPEG-1 systems)
  301.  
  302. audio:
  303.   - type: MPEG (+Layer I,II,III), AC-3, LPCM
  304.   - bitrate
  305.   - sampling frequency (DVD: 48 Khz, VCD: 44.1 KHz, 32 kHz)
  306.   - Trick Modes? (ff, rew)
  307.   - Copyright
  308.   - Inverse Telecine
  309.  
  310. video:
  311.   - picturesize (SIF, 1/2 D1, 2/3 D1, D1) and PAL/NTSC norm can be set
  312.     through excisting V4L2 controls
  313.   - noise reduction, parameters encoder specific?
  314.   - MPEG video version: MPEG-1, MPEG-2
  315.   - GOP (Group Of Pictures) definition:
  316.     - N: number of frames per GOP
  317.     - M: distance between reference (I,P) frames
  318.     - open/closed GOP
  319.   - quantiser matrix: inter Q matrix (64 bytes) and intra Q matrix (64 bytes)
  320.   - quantiser scale: linear or logarithmic
  321.   - scanning: alternate or zigzag
  322.   - bitrate mode: CBR (constant bitrate) or VBR (variable bitrate).
  323.   - target video bitrate for CBR
  324.   - target video bitrate for VBR
  325.   - maximum video bitrate for VBR - min. quantiser value for VBR
  326.   - max. quantiser value for VBR
  327.   - adaptive quantisation value
  328.   - return the number of bytes per GOP or bitrate for bitrate monitoring
  329.  
  330. */
  331. };
  332. #endif
  333.  
  334. struct v4l2_jpegcompression
  335. {
  336.     int quality;
  337.  
  338.     int  APPn;              /* Number of APP segment to be written,
  339.                  * must be 0..15 */
  340.     int  APP_len;           /* Length of data in JPEG APPn segment */
  341.     char APP_data[60];      /* Data in the JPEG APPn segment. */
  342.  
  343.     int  COM_len;           /* Length of data in JPEG COM segment */
  344.     char COM_data[60];      /* Data in JPEG COM segment */
  345.  
  346.     __u32 jpeg_markers;     /* Which markers should go into the JPEG
  347.                  * output. Unless you exactly know what
  348.                  * you do, leave them untouched.
  349.                  * Inluding less markers will make the
  350.                  * resulting code smaller, but there will
  351.                  * be fewer aplications which can read it.
  352.                  * The presence of the APP and COM marker
  353.                  * is influenced by APP_len and COM_len
  354.                  * ONLY, not by this property! */
  355.  
  356. #define V4L2_JPEG_MARKER_DHT (1<<3)    /* Define Huffman Tables */
  357. #define V4L2_JPEG_MARKER_DQT (1<<4)    /* Define Quantization Tables */
  358. #define V4L2_JPEG_MARKER_DRI (1<<5)    /* Define Restart Interval */
  359. #define V4L2_JPEG_MARKER_COM (1<<6)    /* Comment segment */
  360. #define V4L2_JPEG_MARKER_APP (1<<7)    /* App segment, driver will
  361.                                         * allways use APP0 */
  362. };
  363.  
  364.  
  365. /*
  366.  *    M E M O R Y - M A P P I N G   B U F F E R S
  367.  */
  368. struct v4l2_requestbuffers
  369. {
  370.     __u32                    count;
  371.     enum v4l2_buf_type      type;
  372.     enum v4l2_memory        memory;
  373.     __u32                    reserved[2];
  374. };
  375.  
  376. struct v4l2_buffer
  377. {
  378.     __u32            index;
  379.     enum v4l2_buf_type      type;
  380.     __u32            bytesused;
  381.     __u32            flags;
  382.     enum v4l2_field        field;
  383.     struct timeval        timestamp;
  384.     struct v4l2_timecode    timecode;
  385.     __u32            sequence;
  386.  
  387.     /* memory location */
  388.     enum v4l2_memory        memory;
  389.     union {
  390.         __u32           offset;
  391.         unsigned long   userptr;
  392.     } m;
  393.     __u32            length;
  394.     __u32            input;
  395.     __u32            reserved;
  396. };
  397.  
  398. /*  Flags for 'flags' field */
  399. #define V4L2_BUF_FLAG_MAPPED    0x0001  /* Buffer is mapped (flag) */
  400. #define V4L2_BUF_FLAG_QUEUED    0x0002    /* Buffer is queued for processing */
  401. #define V4L2_BUF_FLAG_DONE    0x0004    /* Buffer is ready */
  402. #define V4L2_BUF_FLAG_KEYFRAME    0x0008    /* Image is a keyframe (I-frame) */
  403. #define V4L2_BUF_FLAG_PFRAME    0x0010    /* Image is a P-frame */
  404. #define V4L2_BUF_FLAG_BFRAME    0x0020    /* Image is a B-frame */
  405. #define V4L2_BUF_FLAG_TIMECODE    0x0100    /* timecode field is valid */
  406. #define V4L2_BUF_FLAG_INPUT     0x0200  /* input field is valid */
  407.  
  408. /*
  409.  *    O V E R L A Y   P R E V I E W
  410.  */
  411. struct v4l2_framebuffer
  412. {
  413.     __u32            capability;
  414.     __u32            flags;
  415. /* FIXME: in theory we should pass something like PCI device + memory
  416.  * region + offset instead of some physical address */
  417.     void*                   base;
  418.     struct v4l2_pix_format    fmt;
  419. };
  420. /*  Flags for the 'capability' field. Read only */
  421. #define V4L2_FBUF_CAP_EXTERNOVERLAY    0x0001
  422. #define V4L2_FBUF_CAP_CHROMAKEY        0x0002
  423. #define V4L2_FBUF_CAP_LIST_CLIPPING     0x0004
  424. #define V4L2_FBUF_CAP_BITMAP_CLIPPING    0x0008
  425. /*  Flags for the 'flags' field. */
  426. #define V4L2_FBUF_FLAG_PRIMARY        0x0001
  427. #define V4L2_FBUF_FLAG_OVERLAY        0x0002
  428. #define V4L2_FBUF_FLAG_CHROMAKEY    0x0004
  429.  
  430. struct v4l2_clip
  431. {
  432.     struct v4l2_rect        c;
  433.     struct v4l2_clip    *next;
  434. };
  435.  
  436. struct v4l2_window
  437. {
  438.     struct v4l2_rect        w;
  439.     enum v4l2_field      field;
  440.     __u32            chromakey;
  441.     struct v4l2_clip    __user *clips;
  442.     __u32            clipcount;
  443.     void            __user *bitmap;
  444. };
  445.  
  446.  
  447. /*
  448.  *    C A P T U R E   P A R A M E T E R S
  449.  */
  450. struct v4l2_captureparm
  451. {
  452.     __u32           capability;      /*  Supported modes */
  453.     __u32           capturemode;      /*  Current mode */
  454.     struct v4l2_fract  timeperframe;  /*  Time per frame in .1us units */
  455.     __u32           extendedmode;  /*  Driver-specific extensions */
  456.     __u32              readbuffers;   /*  # of buffers for read */
  457.     __u32           reserved[4];
  458. };
  459. /*  Flags for 'capability' and 'capturemode' fields */
  460. #define V4L2_MODE_HIGHQUALITY    0x0001    /*  High quality imaging mode */
  461. #define V4L2_CAP_TIMEPERFRAME    0x1000    /*  timeperframe field is supported */
  462.  
  463. struct v4l2_outputparm
  464. {
  465.     __u32           capability;     /*  Supported modes */
  466.     __u32           outputmode;     /*  Current mode */
  467.     struct v4l2_fract  timeperframe; /*  Time per frame in seconds */
  468.     __u32           extendedmode; /*  Driver-specific extensions */
  469.     __u32              writebuffers; /*  # of buffers for write */
  470.     __u32           reserved[4];
  471. };
  472.  
  473. /*
  474.  *    I N P U T   I M A G E   C R O P P I N G
  475.  */
  476.  
  477. struct v4l2_cropcap {
  478.     enum v4l2_buf_type      type;
  479.         struct v4l2_rect        bounds;
  480.         struct v4l2_rect        defrect;
  481.         struct v4l2_fract       pixelaspect;
  482. };
  483.  
  484. struct v4l2_crop {
  485.     enum v4l2_buf_type      type;
  486.     struct v4l2_rect        c;
  487. };
  488.  
  489. /*
  490.  *      A N A L O G   V I D E O   S T A N D A R D
  491.  */
  492.  
  493. typedef __u64 v4l2_std_id;
  494.  
  495. /* one bit for each */
  496. #define V4L2_STD_PAL_B          ((v4l2_std_id)0x00000001)
  497. #define V4L2_STD_PAL_B1         ((v4l2_std_id)0x00000002)
  498. #define V4L2_STD_PAL_G          ((v4l2_std_id)0x00000004)
  499. #define V4L2_STD_PAL_H          ((v4l2_std_id)0x00000008)
  500. #define V4L2_STD_PAL_I          ((v4l2_std_id)0x00000010)
  501. #define V4L2_STD_PAL_D          ((v4l2_std_id)0x00000020)
  502. #define V4L2_STD_PAL_D1         ((v4l2_std_id)0x00000040)
  503. #define V4L2_STD_PAL_K          ((v4l2_std_id)0x00000080)
  504.  
  505. #define V4L2_STD_PAL_M          ((v4l2_std_id)0x00000100)
  506. #define V4L2_STD_PAL_N          ((v4l2_std_id)0x00000200)
  507. #define V4L2_STD_PAL_Nc         ((v4l2_std_id)0x00000400)
  508. #define V4L2_STD_PAL_60         ((v4l2_std_id)0x00000800)
  509.  
  510. #define V4L2_STD_NTSC_M         ((v4l2_std_id)0x00001000)
  511. #define V4L2_STD_NTSC_M_JP      ((v4l2_std_id)0x00002000)
  512.  
  513. #define V4L2_STD_SECAM_B        ((v4l2_std_id)0x00010000)
  514. #define V4L2_STD_SECAM_D        ((v4l2_std_id)0x00020000)
  515. #define V4L2_STD_SECAM_G        ((v4l2_std_id)0x00040000)
  516. #define V4L2_STD_SECAM_H        ((v4l2_std_id)0x00080000)
  517. #define V4L2_STD_SECAM_K        ((v4l2_std_id)0x00100000)
  518. #define V4L2_STD_SECAM_K1       ((v4l2_std_id)0x00200000)
  519. #define V4L2_STD_SECAM_L        ((v4l2_std_id)0x00400000)
  520.  
  521. /* ATSC/HDTV */
  522. #define V4L2_STD_ATSC_8_VSB     ((v4l2_std_id)0x01000000)
  523. #define V4L2_STD_ATSC_16_VSB    ((v4l2_std_id)0x02000000)
  524.  
  525. /* some common needed stuff */
  526. #define V4L2_STD_PAL_BG        (V4L2_STD_PAL_B        |\
  527.                  V4L2_STD_PAL_B1    |\
  528.                  V4L2_STD_PAL_G)
  529. #define V4L2_STD_PAL_DK        (V4L2_STD_PAL_D        |\
  530.                  V4L2_STD_PAL_D1    |\
  531.                  V4L2_STD_PAL_K)
  532. #define V4L2_STD_PAL        (V4L2_STD_PAL_BG    |\
  533.                  V4L2_STD_PAL_DK    |\
  534.                  V4L2_STD_PAL_H        |\
  535.                  V4L2_STD_PAL_I)
  536. #define V4L2_STD_NTSC           (V4L2_STD_NTSC_M    |\
  537.                  V4L2_STD_NTSC_M_JP)
  538. #define V4L2_STD_SECAM_DK          (V4L2_STD_SECAM_D    |\
  539.                  V4L2_STD_SECAM_K    |\
  540.                  V4L2_STD_SECAM_K1)
  541. #define V4L2_STD_SECAM        (V4L2_STD_SECAM_B    |\
  542.                  V4L2_STD_SECAM_G    |\
  543.                  V4L2_STD_SECAM_H    |\
  544.                  V4L2_STD_SECAM_DK    |\
  545.                  V4L2_STD_SECAM_L)
  546.  
  547. #define V4L2_STD_525_60        (V4L2_STD_PAL_M        |\
  548.                  V4L2_STD_PAL_60    |\
  549.                  V4L2_STD_NTSC)
  550. #define V4L2_STD_625_50        (V4L2_STD_PAL        |\
  551.                  V4L2_STD_PAL_N        |\
  552.                  V4L2_STD_PAL_Nc    |\
  553.                  V4L2_STD_SECAM)
  554. #define V4L2_STD_ATSC           (V4L2_STD_ATSC_8_VSB    |\
  555.                          V4L2_STD_ATSC_16_VSB)
  556.  
  557. #define V4L2_STD_UNKNOWN        0
  558. #define V4L2_STD_ALL            (V4L2_STD_525_60    |\
  559.                  V4L2_STD_625_50)
  560.  
  561. struct v4l2_standard
  562. {
  563.     __u32                    index;
  564.     v4l2_std_id          id;
  565.     __u8             name[24];
  566.     struct v4l2_fract    frameperiod; /* Frames, not fields */
  567.     __u32             framelines;
  568.     __u32             reserved[4];
  569. };
  570.  
  571.  
  572. /*
  573.  *    V I D E O   I N P U T S
  574.  */
  575. struct v4l2_input
  576. {
  577.     __u32         index;        /*  Which input */
  578.     __u8         name[32];            /*  Label */
  579.     __u32         type;        /*  Type of input */
  580.     __u32         audioset;            /*  Associated audios (bitfield) */
  581.     __u32        tuner;             /*  Associated tuner */
  582.     v4l2_std_id  std;
  583.     __u32         status;
  584.     __u32         reserved[4];
  585. };
  586. /*  Values for the 'type' field */
  587. #define V4L2_INPUT_TYPE_TUNER        1
  588. #define V4L2_INPUT_TYPE_CAMERA        2
  589.  
  590. /* field 'status' - general */
  591. #define V4L2_IN_ST_NO_POWER    0x00000001  /* Attached device is off */
  592. #define V4L2_IN_ST_NO_SIGNAL   0x00000002
  593. #define V4L2_IN_ST_NO_COLOR    0x00000004
  594.  
  595. /* field 'status' - analog */
  596. #define V4L2_IN_ST_NO_H_LOCK   0x00000100  /* No horizontal sync lock */
  597. #define V4L2_IN_ST_COLOR_KILL  0x00000200  /* Color killer is active */
  598.  
  599. /* field 'status' - digital */
  600. #define V4L2_IN_ST_NO_SYNC     0x00010000  /* No synchronization lock */
  601. #define V4L2_IN_ST_NO_EQU      0x00020000  /* No equalizer lock */
  602. #define V4L2_IN_ST_NO_CARRIER  0x00040000  /* Carrier recovery failed */
  603.  
  604. /* field 'status' - VCR and set-top box */
  605. #define V4L2_IN_ST_MACROVISION 0x01000000  /* Macrovision detected */
  606. #define V4L2_IN_ST_NO_ACCESS   0x02000000  /* Conditional access denied */
  607. #define V4L2_IN_ST_VTR         0x04000000  /* VTR time constant */
  608.  
  609. /*
  610.  *    V I D E O   O U T P U T S
  611.  */
  612. struct v4l2_output
  613. {
  614.     __u32         index;        /*  Which output */
  615.     __u8         name[32];            /*  Label */
  616.     __u32         type;        /*  Type of output */
  617.     __u32         audioset;            /*  Associated audios (bitfield) */
  618.     __u32         modulator;         /*  Associated modulator */
  619.     v4l2_std_id  std;
  620.     __u32         reserved[4];
  621. };
  622. /*  Values for the 'type' field */
  623. #define V4L2_OUTPUT_TYPE_MODULATOR        1
  624. #define V4L2_OUTPUT_TYPE_ANALOG            2
  625. #define V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY    3
  626.  
  627. /*
  628.  *    C O N T R O L S
  629.  */
  630. struct v4l2_control
  631. {
  632.     __u32             id;
  633.     __s32             value;
  634. };
  635.  
  636. /*  Used in the VIDIOC_QUERYCTRL ioctl for querying controls */
  637. struct v4l2_queryctrl
  638. {
  639.     __u32                 id;
  640.     enum v4l2_ctrl_type  type;
  641.     __u8             name[32];    /* Whatever */
  642.     __s32             minimum;    /* Note signedness */
  643.     __s32             maximum;
  644.     __s32                 step;
  645.     __s32             default_value;
  646.     __u32                flags;
  647.     __u32             reserved[2];
  648. };
  649.  
  650. /*  Used in the VIDIOC_QUERYMENU ioctl for querying menu items */
  651. struct v4l2_querymenu
  652. {
  653.     __u32        id;
  654.     __u32        index;
  655.     __u8        name[32];    /* Whatever */
  656.     __u32        reserved;
  657. };
  658.  
  659. /*  Control flags  */
  660. #define V4L2_CTRL_FLAG_DISABLED        0x0001
  661. #define V4L2_CTRL_FLAG_GRABBED        0x0002
  662.  
  663. /*  Control IDs defined by V4L2 */
  664. #define V4L2_CID_BASE            0x00980900
  665. /*  IDs reserved for driver specific controls */
  666. #define V4L2_CID_PRIVATE_BASE        0x08000000
  667.  
  668. #define V4L2_CID_BRIGHTNESS        (V4L2_CID_BASE+0)
  669. #define V4L2_CID_CONTRAST        (V4L2_CID_BASE+1)
  670. #define V4L2_CID_SATURATION        (V4L2_CID_BASE+2)
  671. #define V4L2_CID_HUE            (V4L2_CID_BASE+3)
  672. #define V4L2_CID_AUDIO_VOLUME        (V4L2_CID_BASE+5)
  673. #define V4L2_CID_AUDIO_BALANCE        (V4L2_CID_BASE+6)
  674. #define V4L2_CID_AUDIO_BASS        (V4L2_CID_BASE+7)
  675. #define V4L2_CID_AUDIO_TREBLE        (V4L2_CID_BASE+8)
  676. #define V4L2_CID_AUDIO_MUTE        (V4L2_CID_BASE+9)
  677. #define V4L2_CID_AUDIO_LOUDNESS        (V4L2_CID_BASE+10)
  678. #define V4L2_CID_BLACK_LEVEL        (V4L2_CID_BASE+11)
  679. #define V4L2_CID_AUTO_WHITE_BALANCE    (V4L2_CID_BASE+12)
  680. #define V4L2_CID_DO_WHITE_BALANCE    (V4L2_CID_BASE+13)
  681. #define V4L2_CID_RED_BALANCE        (V4L2_CID_BASE+14)
  682. #define V4L2_CID_BLUE_BALANCE        (V4L2_CID_BASE+15)
  683. #define V4L2_CID_GAMMA            (V4L2_CID_BASE+16)
  684. #define V4L2_CID_WHITENESS        (V4L2_CID_GAMMA) /* ? Not sure */
  685. #define V4L2_CID_EXPOSURE        (V4L2_CID_BASE+17)
  686. #define V4L2_CID_AUTOGAIN        (V4L2_CID_BASE+18)
  687. #define V4L2_CID_GAIN            (V4L2_CID_BASE+19)
  688. #define V4L2_CID_HFLIP            (V4L2_CID_BASE+20)
  689. #define V4L2_CID_VFLIP            (V4L2_CID_BASE+21)
  690. #define V4L2_CID_HCENTER        (V4L2_CID_BASE+22)
  691. #define V4L2_CID_VCENTER        (V4L2_CID_BASE+23)
  692. #define V4L2_CID_LASTP1            (V4L2_CID_BASE+24) /* last CID + 1 */
  693.  
  694. /*
  695.  *    T U N I N G
  696.  */
  697. struct v4l2_tuner
  698. {
  699.     __u32                   index;
  700.     __u8            name[32];
  701.     enum v4l2_tuner_type    type;
  702.     __u32            capability;
  703.     __u32            rangelow;
  704.     __u32            rangehigh;
  705.     __u32            rxsubchans;
  706.     __u32            audmode;
  707.     __s32            signal;
  708.     __s32            afc;
  709.     __u32            reserved[4];
  710. };
  711.  
  712. struct v4l2_modulator
  713. {
  714.     __u32            index;
  715.     __u8            name[32];
  716.     __u32            capability;
  717.     __u32            rangelow;
  718.     __u32            rangehigh;
  719.     __u32            txsubchans;
  720.     __u32            reserved[4];
  721. };
  722.  
  723. /*  Flags for the 'capability' field */
  724. #define V4L2_TUNER_CAP_LOW        0x0001
  725. #define V4L2_TUNER_CAP_NORM        0x0002
  726. #define V4L2_TUNER_CAP_STEREO        0x0010
  727. #define V4L2_TUNER_CAP_LANG2        0x0020
  728. #define V4L2_TUNER_CAP_SAP        0x0020
  729. #define V4L2_TUNER_CAP_LANG1        0x0040
  730.  
  731. /*  Flags for the 'rxsubchans' field */
  732. #define V4L2_TUNER_SUB_MONO        0x0001
  733. #define V4L2_TUNER_SUB_STEREO        0x0002
  734. #define V4L2_TUNER_SUB_LANG2        0x0004
  735. #define V4L2_TUNER_SUB_SAP        0x0004
  736. #define V4L2_TUNER_SUB_LANG1        0x0008
  737.  
  738. /*  Values for the 'audmode' field */
  739. #define V4L2_TUNER_MODE_MONO        0x0000
  740. #define V4L2_TUNER_MODE_STEREO        0x0001
  741. #define V4L2_TUNER_MODE_LANG2        0x0002
  742. #define V4L2_TUNER_MODE_SAP        0x0002
  743. #define V4L2_TUNER_MODE_LANG1        0x0003
  744.  
  745. struct v4l2_frequency
  746. {
  747.     __u32                  tuner;
  748.     enum v4l2_tuner_type  type;
  749.         __u32                  frequency;
  750.     __u32                  reserved[8];
  751. };
  752.  
  753. /*
  754.  *    A U D I O
  755.  */
  756. struct v4l2_audio
  757. {
  758.     __u32    index;
  759.     __u8    name[32];
  760.     __u32    capability;
  761.     __u32    mode;
  762.     __u32    reserved[2];
  763. };
  764. /*  Flags for the 'capability' field */
  765. #define V4L2_AUDCAP_STEREO        0x00001
  766. #define V4L2_AUDCAP_AVL            0x00002
  767.  
  768. /*  Flags for the 'mode' field */
  769. #define V4L2_AUDMODE_AVL        0x00001
  770.  
  771. struct v4l2_audioout
  772. {
  773.     __u32    index;
  774.     __u8    name[32];
  775.     __u32    capability;
  776.     __u32    mode;
  777.     __u32    reserved[2];
  778. };
  779.  
  780. /*
  781.  *    D A T A   S E R V I C E S   ( V B I )
  782.  *
  783.  *    Data services API by Michael Schimek
  784.  */
  785.  
  786. struct v4l2_vbi_format
  787. {
  788.     __u32    sampling_rate;        /* in 1 Hz */
  789.     __u32    offset;
  790.     __u32    samples_per_line;
  791.     __u32    sample_format;        /* V4L2_PIX_FMT_* */
  792.     __s32    start[2];
  793.     __u32    count[2];
  794.     __u32    flags;            /* V4L2_VBI_* */
  795.     __u32    reserved[2];        /* must be zero */
  796. };
  797.  
  798. /*  VBI flags  */
  799. #define V4L2_VBI_UNSYNC        (1<< 0)
  800. #define V4L2_VBI_INTERLACED    (1<< 1)
  801.  
  802.  
  803. /*
  804.  *    A G G R E G A T E   S T R U C T U R E S
  805.  */
  806.  
  807. /*    Stream data format
  808.  */
  809. struct v4l2_format
  810. {
  811.     enum v4l2_buf_type type;
  812.     union
  813.     {
  814.         struct v4l2_pix_format    pix;  // V4L2_BUF_TYPE_VIDEO_CAPTURE
  815.         struct v4l2_window    win;  // V4L2_BUF_TYPE_VIDEO_OVERLAY
  816.         struct v4l2_vbi_format    vbi;  // V4L2_BUF_TYPE_VBI_CAPTURE
  817.         __u8    raw_data[200];        // user-defined
  818.     } fmt;
  819. };
  820.  
  821.  
  822. /*    Stream type-dependent parameters
  823.  */
  824. struct v4l2_streamparm
  825. {
  826.     enum v4l2_buf_type type;
  827.     union
  828.     {
  829.         struct v4l2_captureparm    capture;
  830.         struct v4l2_outputparm    output;
  831.         __u8    raw_data[200];  /* user-defined */
  832.     } parm;
  833. };
  834.  
  835.  
  836.  
  837. /*
  838.  *    I O C T L   C O D E S   F O R   V I D E O   D E V I C E S
  839.  *
  840.  */
  841. #define VIDIOC_QUERYCAP        _IOR  ('V',  0, struct v4l2_capability)
  842. #define VIDIOC_RESERVED        _IO   ('V',  1)
  843. #define VIDIOC_ENUM_FMT         _IOWR ('V',  2, struct v4l2_fmtdesc)
  844. #define VIDIOC_G_FMT        _IOWR ('V',  4, struct v4l2_format)
  845. #define VIDIOC_S_FMT        _IOWR ('V',  5, struct v4l2_format)
  846. #if 0
  847. #define VIDIOC_G_COMP        _IOR  ('V',  6, struct v4l2_compression)
  848. #define VIDIOC_S_COMP        _IOW  ('V',  7, struct v4l2_compression)
  849. #endif
  850. #define VIDIOC_REQBUFS        _IOWR ('V',  8, struct v4l2_requestbuffers)
  851. #define VIDIOC_QUERYBUF        _IOWR ('V',  9, struct v4l2_buffer)
  852. #define VIDIOC_G_FBUF        _IOR  ('V', 10, struct v4l2_framebuffer)
  853. #define VIDIOC_S_FBUF        _IOW  ('V', 11, struct v4l2_framebuffer)
  854. #define VIDIOC_OVERLAY        _IOW  ('V', 14, int)
  855. #define VIDIOC_QBUF        _IOWR ('V', 15, struct v4l2_buffer)
  856. #define VIDIOC_DQBUF        _IOWR ('V', 17, struct v4l2_buffer)
  857. #define VIDIOC_STREAMON        _IOW  ('V', 18, int)
  858. #define VIDIOC_STREAMOFF    _IOW  ('V', 19, int)
  859. #define VIDIOC_G_PARM        _IOWR ('V', 21, struct v4l2_streamparm)
  860. #define VIDIOC_S_PARM        _IOWR ('V', 22, struct v4l2_streamparm)
  861. #define VIDIOC_G_STD        _IOR  ('V', 23, v4l2_std_id)
  862. #define VIDIOC_S_STD        _IOW  ('V', 24, v4l2_std_id)
  863. #define VIDIOC_ENUMSTD        _IOWR ('V', 25, struct v4l2_standard)
  864. #define VIDIOC_ENUMINPUT    _IOWR ('V', 26, struct v4l2_input)
  865. #define VIDIOC_G_CTRL        _IOWR ('V', 27, struct v4l2_control)
  866. #define VIDIOC_S_CTRL        _IOWR ('V', 28, struct v4l2_control)
  867. #define VIDIOC_G_TUNER        _IOWR ('V', 29, struct v4l2_tuner)
  868. #define VIDIOC_S_TUNER        _IOW  ('V', 30, struct v4l2_tuner)
  869. #define VIDIOC_G_AUDIO        _IOR  ('V', 33, struct v4l2_audio)
  870. #define VIDIOC_S_AUDIO        _IOW  ('V', 34, struct v4l2_audio)
  871. #define VIDIOC_QUERYCTRL    _IOWR ('V', 36, struct v4l2_queryctrl)
  872. #define VIDIOC_QUERYMENU    _IOWR ('V', 37, struct v4l2_querymenu)
  873. #define VIDIOC_G_INPUT        _IOR  ('V', 38, int)
  874. #define VIDIOC_S_INPUT        _IOWR ('V', 39, int)
  875. #define VIDIOC_G_OUTPUT        _IOR  ('V', 46, int)
  876. #define VIDIOC_S_OUTPUT        _IOWR ('V', 47, int)
  877. #define VIDIOC_ENUMOUTPUT    _IOWR ('V', 48, struct v4l2_output)
  878. #define VIDIOC_G_AUDOUT        _IOR  ('V', 49, struct v4l2_audioout)
  879. #define VIDIOC_S_AUDOUT        _IOW  ('V', 50, struct v4l2_audioout)
  880. #define VIDIOC_G_MODULATOR    _IOWR ('V', 54, struct v4l2_modulator)
  881. #define VIDIOC_S_MODULATOR    _IOW  ('V', 55, struct v4l2_modulator)
  882. #define VIDIOC_G_FREQUENCY    _IOWR ('V', 56, struct v4l2_frequency)
  883. #define VIDIOC_S_FREQUENCY    _IOW  ('V', 57, struct v4l2_frequency)
  884. #define VIDIOC_CROPCAP        _IOWR ('V', 58, struct v4l2_cropcap)
  885. #define VIDIOC_G_CROP        _IOWR ('V', 59, struct v4l2_crop)
  886. #define VIDIOC_S_CROP        _IOW  ('V', 60, struct v4l2_crop)
  887. #define VIDIOC_G_JPEGCOMP    _IOR  ('V', 61, struct v4l2_jpegcompression)
  888. #define VIDIOC_S_JPEGCOMP    _IOW  ('V', 62, struct v4l2_jpegcompression)
  889. #define VIDIOC_QUERYSTD          _IOR  ('V', 63, v4l2_std_id)
  890. #define VIDIOC_TRY_FMT          _IOWR ('V', 64, struct v4l2_format)
  891. #define VIDIOC_ENUMAUDIO    _IOWR ('V', 65, struct v4l2_audio)
  892. #define VIDIOC_ENUMAUDOUT    _IOWR ('V', 66, struct v4l2_audioout)
  893. #define VIDIOC_G_PRIORITY       _IOR  ('V', 67, enum v4l2_priority)
  894. #define VIDIOC_S_PRIORITY       _IOW  ('V', 68, enum v4l2_priority)
  895.  
  896. /* for compatibility, will go away some day */
  897. #define VIDIOC_OVERLAY_OLD         _IOWR ('V', 14, int)
  898. #define VIDIOC_S_PARM_OLD          _IOW  ('V', 22, struct v4l2_streamparm)
  899. #define VIDIOC_S_CTRL_OLD          _IOW  ('V', 28, struct v4l2_control)
  900. #define VIDIOC_G_AUDIO_OLD         _IOWR ('V', 33, struct v4l2_audio)
  901. #define VIDIOC_G_AUDOUT_OLD        _IOWR ('V', 49, struct v4l2_audioout)
  902. #define VIDIOC_CROPCAP_OLD         _IOR  ('V', 58, struct v4l2_cropcap)
  903.  
  904. #define BASE_VIDIOC_PRIVATE    192        /* 192-255 are private */
  905.  
  906.  
  907. #ifdef __KERNEL__
  908. /*
  909.  *
  910.  *    V 4 L 2   D R I V E R   H E L P E R   A P I
  911.  *
  912.  *    Some commonly needed functions for drivers (v4l2-common.o module)
  913.  */
  914. #include <linux/fs.h>
  915.  
  916. /*  Video standard functions  */
  917. extern unsigned int v4l2_video_std_fps(struct v4l2_standard *vs);
  918. extern int v4l2_video_std_construct(struct v4l2_standard *vs,
  919.                     int id, char *name);
  920.  
  921. /* prority handling */
  922. struct v4l2_prio_state {
  923.     atomic_t prios[4];
  924. };
  925. int v4l2_prio_init(struct v4l2_prio_state *global);
  926. int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
  927.              enum v4l2_priority new);
  928. int v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local);
  929. int v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority *local);
  930. enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global);
  931. int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority *local);
  932.  
  933. /* names for fancy debug output */
  934. extern char *v4l2_field_names[];
  935. extern char *v4l2_type_names[];
  936. extern char *v4l2_ioctl_names[];
  937.  
  938. /*  Compatibility layer interface  --  v4l1-compat module */
  939. typedef int (*v4l2_kioctl)(struct inode *inode, struct file *file,
  940.                unsigned int cmd, void *arg);
  941. int v4l_compat_translate_ioctl(struct inode *inode, struct file *file,
  942.                    int cmd, void *arg, v4l2_kioctl driver_ioctl);
  943.  
  944. #endif /* __KERNEL__ */
  945. #endif /* __LINUX_VIDEODEV2_H */
  946.  
  947. /*
  948.  * Local variables:
  949.  * c-basic-offset: 8
  950.  * End:
  951.  */
  952.